home *** CD-ROM | disk | FTP | other *** search
/ Komputer for Alle 2001 #11 / CD 11 (Black) - 2001.iso / FAVORG / FAVO_SRC.ZIP / optionsdlg.h < prev    next >
Encoding:
C/C++ Source or Header  |  2000-10-25  |  1.5 KB  |  58 lines

  1. // FAVORG Version 1.1
  2. // Copyright (c) 2000 Ziff Davis Media, Inc.
  3. // All rights reserved.
  4. // First Published in PC Magazine, US Edition, November 7, 2000.
  5. // Programmer: Patrick Philippot
  6.  
  7. #if !defined(AFX_OPTIONSDLG_H__C569E076_6C35_11D4_909E_00A0249EABF4__INCLUDED_)
  8. #define AFX_OPTIONSDLG_H__C569E076_6C35_11D4_909E_00A0249EABF4__INCLUDED_
  9.  
  10. #if _MSC_VER > 1000
  11. #pragma once
  12. #endif // _MSC_VER > 1000
  13. // OptionsDlg.h : header file
  14. //
  15.  
  16. /////////////////////////////////////////////////////////////////////////////
  17. // COptionsDlg dialog
  18.  
  19. class COptionsDlg : public CDialog
  20. {
  21. // Construction
  22. public:
  23.     COptionsDlg(CWnd* pParent = NULL);   // standard constructor
  24.  
  25. // Dialog Data
  26.     //{{AFX_DATA(COptionsDlg)
  27.     enum { IDD = IDD_OPTIONS };
  28.     UINT    m_nTimeout;
  29.     BOOL    m_bNoConnectiontest;
  30.     //}}AFX_DATA
  31.  
  32.     CString        m_sStorePath;
  33.     BOOL        m_bCanSetFolder;
  34.  
  35. // Overrides
  36.     // ClassWizard generated virtual function overrides
  37.     //{{AFX_VIRTUAL(COptionsDlg)
  38.     protected:
  39.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  40.     //}}AFX_VIRTUAL
  41.  
  42. // Implementation
  43. protected:
  44.  
  45.     // Generated message map functions
  46.     //{{AFX_MSG(COptionsDlg)
  47.     afx_msg void OnSelFolder();
  48.     virtual BOOL OnInitDialog();
  49.     afx_msg void OnHelp();
  50.     //}}AFX_MSG
  51.     DECLARE_MESSAGE_MAP()
  52. };
  53.  
  54. //{{AFX_INSERT_LOCATION}}
  55. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  56.  
  57. #endif // !defined(AFX_OPTIONSDLG_H__C569E076_6C35_11D4_909E_00A0249EABF4__INCLUDED_)
  58.